home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000309_fdc@columbia.edu_Sat Feb 15 13:37:51 EST 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  38 lines

  1. Article: 14105 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Dealing with '\' char in strings of file locations
  6. Date: 15 Feb 2003 13:37:09 -0500
  7. Organization: Columbia University
  8. Lines: 21
  9. Message-ID: <b2m1cl$m9k$1@watsol.cc.columbia.edu>
  10. References: <a70f50e.0302121525.7922c8c3@posting.google.com> <b2i0it$lfs$1@newsmaster.cc.columbia.edu> <b2j0m9$i09$1@watsol.cc.columbia.edu> <a70f50e.0302141716.965b0bc@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1045334230 11582 128.59.39.139 (15 Feb 2003 18:37:10 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 15 Feb 2003 18:37:10 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14105
  16.  
  17. In article <a70f50e.0302141716.965b0bc@posting.google.com>,
  18. Wes <wesdog@hotmail.com> wrote:
  19. : I finally got everything working on 95.  On the way I discovered that
  20. : whitespace between a function and the open paren causes issues, and
  21. : 'if' statements where the open curley bracket was on the next line
  22. : won't run the commands.
  23. It's important to understand this is a word- and line-oriented command
  24. language and not a fully tokenized compiled programming language like C
  25. where spaces and linebreaks are largely ignored.  Therefore you don't have
  26. as many choices about style.  It's always best to follow the examples in
  27. the script library:
  28.  
  29.   http://www.columbia.edu/kermit/ckscripts.html
  30.  
  31. We are in the planning stages of a new book that covers concepts like this
  32. better and brings together the scattered material on scripting.  Once it's
  33. available, script writing should become much easier.  No, I can't say when
  34. it will be available; it takes as long as it takes.
  35.  
  36. - Frank
  37.